home *** CD-ROM | disk | FTP | other *** search
/ PD ROM 1 / PD ROM Volume I - Macintosh Software from BMUG (1988).iso / Electronic Messages / USEnet Digests / USEnet Vol. 4 / USEnet 4.72 < prev    next >
Encoding:
Text File  |  1988-06-18  |  40.6 KB  |  1,005 lines  |  [TEXT/ttxt]

  1.  
  2. Usenet Mac Digest     Saturday, June 4, 1988         Volume 4 : Issue 72
  3.  
  4. Today's Topics:
  5. : Saving style info in text file
  6.      A/UX remote commands problems
  7.      "C" compiler for Z80
  8.      Quest+Leech+SoundMaster
  9.      Perhaps something really *is* amis a Jasmine.
  10.      Re: FullWrite Professional -- changes between demo and release
  11.      FullWrite/MakeWrite
  12.      postscript previewing on a Mac (I or II)
  13.      MPW C external for 4D???
  14.      DA question
  15.      Anybody using MacWorkStation?
  16.      Database toolkits
  17.      Postscript file convertion
  18.      Comments wanted on Expressionist equation editor. (2 messages)
  19.      PCPC WSI
  20.      FullWrite Pro bug.
  21.      Re: The Overbar in the Symbol font
  22.      Re: FullWrite bizzarity explained (?)
  23.      FullWrite -- I'm sorry, but...
  24.      A Multiuser Helix II Problem
  25.      Re: FullWrite -- I'm sorry, but...
  26.      Reducing disk swaps on 2 floppy Macs
  27.  
  28. ----------------------------------------------------------------------
  29.  
  30. From: oster@dewey.soe.berkeley.edu (David Phillip Oster)
  31. Subject: Re: Saving style info in text file
  32. Date: 31 May 88 03:03:52 GMT
  33. Organization: School of Education, UC-Berkeley
  34.  
  35. In article <1632@vaxb.calgary.UUCP> gaines@calgary.UUCP (Brian Gaines)
  36. writes:
  37. >Have any standards been proposed for files carrying the new text style
  38. >information? It would be useful to have an interchange format. I have
  39. >tucked the StScrpHandle information into the resource fork of the
  40. >associated text file as a resource 'styl' id 128. The file can be read
  41. >as plain text by other applns but mine can pick up the style info and
  42. >restore it.  However, if we all start inventing resource ids there will
  43. >be chaos.  In the longer run it would be nice if MacWrite, Word, etc
  44. >would read up these files.
  45.  
  46. This is a real good start.  I published an article in comp.sys.mac a
  47. while back called "How To Write a TEXT Editor. Part 1"  Part 2 was going
  48. to be on this very issue.  Here are some more points to think about:
  49.  
  50. Sticky Point 1: the diffreent system file problem. 1.) The 'styl'
  51. resource has integers for the font-ids.  This is a no-no for anything
  52. you are going to give to anybody else.  You need an additional resource
  53. that is a table that maps font-id integers to string font names.  Apple
  54. does this in 'ictb' resources (see Dialog Manager, Vol 5 of Inside
  55. Macintosh.)  How about using the Font table part of of an 'ictb' as our
  56. file format and storing it in a resource of type 'Font' id=128.  (Note
  57. the mixed case of 'Font'.)
  58.  
  59. If the required fonts can't be found, the program should probably
  60. present a dialog asking how the fonts should be mapped.
  61.  
  62. Sticky Point 2: the old editor problem 2.) Since a user could create a
  63. file with a new editor, then change it with an old editor, then open it
  64. after the change with a new editor, we have to store some kind of
  65. checksum, such as the total length of the text in the first 4 bytes of
  66. the resource (for later extension of Text Edit by apple.) in the next 2
  67. bytes should be a checksum composed by XORing each pair of bytes in the
  68. text:
  69.  
  70.     xorVal = 0;
  71.     for(i = 0; i < Length(Text)/2;i++){
  72.       xorVal ^= ((short *) Text)[i];
  73.     }
  74.  
  75. That way, if the length and checksum don't match the program should ask
  76. the user whether it should try to use the 'styl' info or not.  If this
  77. is too garbaged up to use, the user can always close the file and try
  78. again. Some menu commands to discard 'styl' info, or to fix it up might
  79. be nice.
  80.  
  81. Sticky Point 3: the multifinder compatibility problem: 3.) As long as we
  82. are adding resources, remember that the multi-finder compatibility
  83. guidlines say that when you open a file, it should come up in the same
  84. spot as the screen as last time. (If that spot exists in this systems
  85. screen configuration.)  I think we should use a 'WIND' 128 resource as a
  86. resonable place to put the rectangle of the screen a window should be
  87. placed.
  88.  
  89. Sticky Point 4: Other resource that should be in the file: the
  90. international resource: INTL 0, INTL 1, and the 'intl' resource that
  91. this document requires.
  92.  
  93. The printer job dialog record,  I think 'Prec' 128 is pretty much a
  94. standard for this.
  95.  
  96. The old editor 'EFNT' and 'ETAB' resources, so that old, single font
  97. editors will see soemthing reasonable.
  98.  
  99. Sticky Point #4: If you give users something they'll want to edit it 4.)
  100. Remember, if you let the users set fonts,sizes,styles, and colors
  101. they'll want to be able to do searches, and search and replaces that are
  102. smart about fonts. I've come up with a neat user interface for this, and
  103. FullWrite has one also.
  104.  
  105. Note 1: 1.) Note you can use multi-font text edit to implement tabs, by
  106. using a special "tab" font, consisting of characters of many different
  107. widths. (These have the nice property that they mouse like a tab should,
  108. but you have to replace every tab further out on the line as you type in
  109. the middle of the line.)
  110.  
  111. Let's get some programns out there! We'll make a standard!
  112. --
  113. Copyright (c) 1988 by David Phillip Oster, All Rights Reserved
  114. If you wish to republish this info, please get in touch with me.
  115. --- David Phillip Oster            --When you asked me to live in sin with you
  116. Arpa: oster@dewey.soe.berkeley.edu --I didn't know you meant sloth.
  117. Uucp: {uwvax,decvax,ihnp4}!ucbvax!oster%dewey.soe.berkeley.edu
  118.  
  119.  
  120. ------------------------------
  121.  
  122. From: peterm@vub.UUCP (Peter Meyers)
  123. Subject: A/UX remote commands problems
  124. Date: 27 May 88 13:55:58 GMT
  125. Organization: Vrije Universiteit Brussel, Brussels
  126.  
  127. Help! I have a problem with remote commands under A/UX.
  128.  
  129. The remsh command to go from the Mac II (A/UX) -> VAX (4.3BSD UNIX)
  130. works only  if you use it to remote login (remsh host). Whenever I want
  131. to do a remote  command on the VAX (i.e. remsh host ls), all I get is
  132. silence, so I have to  stop the command. The netstat command under A/UX
  133. shows first the state ESTABLISHED, and then aftera while (~ 30 sec.) it
  134. says CLOSE_WAIT. Could there be some misunderstanding between the remote
  135. shell daemons?
  136.  
  137. When I want to login from the VAX on the Mac II, netstat gives state
  138. SYN_SENT, and after a minute the command stops with a 'connection timed
  139. out'.
  140. --
  141. Peter Meyers
  142. Vrije Universiteit Brussel
  143. Laarbeeklaan 103
  144. 1090 Brussel
  145. Belgium
  146.  
  147. ----------
  148. peterm@vub.vub.uucp
  149. ...!mcvax!prlb2!vub.vub!peterm
  150.  
  151.  
  152. ------------------------------
  153.  
  154. From: ferrie@mcgill-vision.UUCP (Frank Ferrie)
  155. Subject: "C" compiler for Z80
  156. Date: 31 May 88 00:41:26 GMT
  157. Organization: McGill University, Montreal
  158.  
  159. Dear World,
  160.  
  161.   I know this is out of the Dark Ages, but does anyone know of a public
  162. domain "C" cross compiler (even a cross assembler) for the Z80 family
  163. that runs on a MAC?  The thought of having to go near a PC is almost as
  164. bad as having to revise 6 year old Z80 assembly code.
  165. --
  166. Thanks,
  167. Frank Ferrie
  168.  
  169.  
  170. ------------------------------
  171.  
  172. From: oster@dewey.soe.berkeley.edu (David Phillip Oster)
  173. Subject: Quest+Leech+SoundMaster
  174. Date: 31 May 88 11:01:44 GMT
  175. Organization: School of Education, UC-Berkeley
  176.  
  177. Here is soemthing fun to do with your mac:
  178.     1.) Buy Crystal Quest.
  179.     2.) Copy the Crystal Quest Sounds file.
  180.     3.) Use ResEdit, or some other tool like DiskTop to change the type of
  181. the
  182.     "Copy of CrystalQuest Sounds" file to 'rsrc' (note the lower case.)
  183.     4.) Use the recently posted Sound Leech utility to copy out all
  184. resources
  185.     of type 'SMSD' (note all upper case.)
  186.     5.) Use the recently posted CDEV SoundMaster to associate the sound
  187.     "Quest.Snd.Thru" with a disk insertion event.  (Note: you'll have to
  188. drag
  189.     the file into the system folder before SOundMaster can see it.)
  190.  
  191. Result: A Macintosh that moans orgasmically every time you put a floppy
  192. in it.
  193. --
  194. Copyright (c) 1988 by David Phillip Oster, All Rights Reserved
  195. If you wish to republish these directions, please contact me.
  196. --- David Phillip Oster            --When you asked me to live in sin with you
  197. Arpa: oster@dewey.soe.berkeley.edu --I didn't know you meant sloth.
  198. Uucp: {uwvax,decvax,ihnp4}!ucbvax!oster%dewey.soe.berkeley.edu
  199.  
  200.  
  201. ------------------------------
  202.  
  203. From: roy@phri.UUCP (Roy Smith)
  204. Subject: Perhaps something really *is* amis a Jasmine.
  205. Date: 31 May 88 15:34:42 GMT
  206. Organization: Public Health Research Institute, NYC, NY
  207.  
  208.  
  209.     A couple of weeks ago, somebody flamed Jasmine for cashing their check
  210. and then claiming that they never got the order in the first place. I
  211. came to Jasmine's rescue saying that we've done a lot of business with
  212. them and never had any problem.  At the time I suggested that it must
  213. have been a fluke; even the best run business offices will occasionally
  214. loose a piece of paperwork.
  215.  
  216.     Well, I guess it's time for me to retract my defense.  They just did
  217. exactly the same thing to us.  We sent them an order a couple of weeks
  218. ago with a check enclosed.  When we hadn't gotten the drive by last
  219. Friday, we called them up and asked where it was; they said they were
  220. waiting to get the check.  My initial reaction was to fume at *our*
  221. business office for neglecting to include the check with the order like
  222. they were supposed to until it turned out that not only did Jasmine get
  223. the check, but they cashed it too.  Harumph!
  224.  
  225.     Conclusion.  Jasmine started out as a good company to do business with.
  226.  They offered a good product at a price that couldn't be beat.  Now, it
  227. looks like they've grown too fast.  Not only have they raised their
  228. prices but quality of service seems to have dropped as well.  If Jasmine
  229. expects to stay around, they had best get their act together, and quick.
  230. Hey Jasmine, you guys read the net?  You've certainly lost a good source
  231. of word-of-mouth advertising and you've come damn close to loosing a
  232. loyal customer (PHRI has probably done close to $10k of Jasmine business
  233. in the past year or so) as well.
  234. --
  235. Roy Smith, System Administrator
  236. Public Health Research Institute
  237. 455 First Avenue, New York, NY 10016
  238. {allegra,philabs,cmcl2,rutgers}!phri!roy -or- phri!roy@uunet.uu.net
  239.  
  240.  
  241. ------------------------------
  242.  
  243. From: moriarty@tc.fluke.COM (Jeff Meyer)
  244. Subject: Re: FullWrite Professional -- changes between demo and release
  245. Date: 31 May 88 18:45:28 GMT
  246. Organization: John Fluke Mfg. Co., Inc., Everett, WA
  247.  
  248. Basically, I think Chuq hit most of the changes -- certainly the ones I
  249. would have listed right off, and his emphasis is exactly right, it's a
  250. solid product now.  I'm fairly sure that some changes were made page
  251. setup/doc setup/something with margins, but I'm frankly not going to try
  252. to dredge up the demo (from the bowels of some 3M tape I've got laying
  253. around) to check.
  254.  
  255. By the way, found a rather obscure bug in the released version the other
  256. day.  If you save a document as "Text with Carriage Returns", most lines
  257. have an extra space at the beginning of the line.  Slightly annoying,
  258. though not much of a hassle to me -- a button-click in McSink or Emacs
  259. takes care of this.  Still, for people writing for electronic mediums,
  260. it needs to be fixed (and I'm sure it will be).
  261.  
  262.                         "Let the meek inherit the earth -- they have it
  263.                          coming to them."
  264.                                             -- James Thurber
  265. --
  266.                                         Moriarty, aka Jeff Meyer
  267. INTERNET:     moriarty@tc.fluke.COM
  268. Manual UUCP:  {uw-beaver, sun, microsoft}!fluke!moriarty
  269. CREDO:        You gotta be Cruel to be Kind...
  270. <*> DISCLAIMER: Do what you want with me, but leave my employers alone! <*>
  271.  
  272.  
  273. ------------------------------
  274.  
  275. From: dubois@rhesus.primate.wisc.edu (Old Sneep)
  276. Subject: FullWrite/MakeWrite
  277. Date: 31 May 88 18:47:56 GMT
  278. Organization: The Ancient Harmonies
  279.  
  280. I am told that someone asked here whether FullWrite can take a plain
  281. text file with embedded formatting commands and produce a document with
  282. the ask-for formatting.  I see Ed Moy has already observed that
  283. MakeWrite will do this to a limited extent, producing a MacWrite
  284. document.  There is a problem with MakeWrite, in that files produced
  285. this way are sometimes not importable into other word processors.  For
  286. instance, imports of MakeWrite files into Ready Set Go fail.
  287.  
  288. On the other hand, I am also told that if you read the
  289. MakeWrite-produced file into MacWrite and save it *under another name*
  290. and import the second file into RSG, it works.  I don't know whether
  291. this is true from my own experience, but if so, this information may be
  292. of some relevance to the question regarding FullWrite.
  293. --
  294. Paul DuBois     UUCP: {allegra,ihnp4,uunet}!uwvax!rhesus!dubois     |
  295.                 ARPA: dubois@rhesus.primate.wisc.edu              --+--
  296.                                                                     |
  297. alt.sex: just say rmgroup.                                          |
  298.  
  299.  
  300. ------------------------------
  301.  
  302. From: isaac@goanna.oz (Isaac Balbin)
  303. Subject: postscript previewing on a Mac (I or II)
  304. Date: 31 May 88 00:55:31 GMT
  305. Organization: Comp Sci, RMIT, Melbourne, Australia
  306.  
  307. Does anyone do this? What software do you use? How effective is it. For
  308. interest, I wish to (screen) preview postscript output which  originally
  309. emanated from ditroff.
  310.         Please EMail you replies to me.
  311.                 Thanks.
  312. --
  313. Isaac Balbin            
  314. Department of Computer Science,      ACSnet: isaac@goanna.cs.rmit.oz.au
  315. RMIT,
  316. GPO BOX 2476 V,                   ARPA:isaac%goanna.cs.rmit.oz.au@uunet.uu.net
  317. Melbourne, 3001           CSNET: isaac%goanna.cs.rmit.oz.au@australia
  318. AUSTRALIA                         UUCP: ...!uunet!goanna.cs.rmit.oz.au!isaac
  319.  
  320.  
  321. ------------------------------
  322.  
  323. From: sys_ms@bmc1.uu.se
  324. Subject: MPW C external for 4D???
  325. Date: 26 May 88 13:22:24 GMT
  326. Organization: Biomedical Center, University of Uppsala, Sweden
  327.  
  328.  
  329.     Anyone out there that can help me with a short example
  330.     on how to write an external procedure for 4D in MPW C.
  331.     All the examples seems to be written in Pascal in the
  332.     manual. I need to pass a couple of reals and integers
  333.     to the procedure.
  334.  
  335.     I get very funny errors and I do not know if I use
  336.     variabeltypes that do not correspond to the 4D types or
  337.     if there is a problem with ttransfer of the code segment.
  338.  
  339.         Mats
  340.  
  341.  
  342. ------------------------------
  343.  
  344. From: bolter@unc.cs.unc.edu (Jay D. Bolter)
  345. Subject: DA question
  346. Date: 31 May 88 14:20:11 GMT
  347.  
  348. Can anyone suggest how to create a Desk Accessory with a large  amount
  349. of code (say 70 or 80K)? What are the factors that limit  you to 32K? Is
  350. it possible, for example, to store more code in one's  own resources (in
  351. addition to the DRVR resource) and then call in  that code as needed. If
  352. so, how do you pass control to and from these  code resources? Can
  353. anyone suggest any books or articles that discuss  problems of large
  354. DAs? (I am programming in MPW Pascal.)
  355.  
  356.  
  357. ------------------------------
  358.  
  359. From: ephraim@think.COM (ephraim vishniac)
  360. Subject: Anybody using MacWorkStation?
  361. Date: 31 May 88 20:05:26 GMT
  362. Organization: Thinking Machines Corporation, Cambridge, MA
  363.  
  364.  
  365. The description in the May 1988 _Outside_Apple_ makes MacWorkStation
  366. sound like an almost ideal vehicle for whipping up a Mac front end to a
  367. mainframe application.  The price is a bit steep, but not a problem if
  368. MWS is really good (i.e., is usable and will save us several months of
  369. work).  So my question is, how good is MWS?  I'd like to hear the good
  370. and the bad from anybody who's worked with it.
  371.  
  372. I'm especially interested in how well it can handle a situation such as
  373. the following:
  374.  
  375. We're building an information retrieval system.  The result of a search
  376. is a list of articles, with their headlines visible.  The user should be
  377. able to browse through the articles in any way he pleases. To improve
  378. apparent performance, we should anticipate his likely choices by sending
  379. the first few paragraphs and the best few paragraphs of each article
  380. while the user is pondering his next move. Paragraphs will be cached in
  381. memory.  If the user selects something we've prefetched, we win.  If he
  382. makes an unanticipated move, we should be able to abort our transfer and
  383. act on his request promptly.
  384.  
  385. Will MWS allow us to carry on this kind of background activity?  Does it
  386. use error-detecting/correcting protocols?  Does it allow transmission of
  387. binary data or are you restricted by the underlying network?  What's the
  388. performance like on bulk data transfer?
  389.  
  390. Also, short of buying the whole package, is any technical documentation
  391. available that might answer questions such as the above?
  392. --
  393. Ephraim Vishniac                      ephraim@think.com
  394. Thinking Machines Corporation / 245 First Street / Cambridge, MA 02142-1214
  395.  
  396.      On two occasions I have been asked, "Pray, Mr. Babbage, if you put
  397.      into the machine wrong figures, will the right answers come out?"
  398.  
  399.  
  400. ------------------------------
  401.  
  402. From: leeke@glacier.STANFORD.EDU (Steven D. Leeke)
  403. Subject: Database toolkits
  404. Date: 31 May 88 20:59:38 GMT
  405. Organization: Stanford University
  406.  
  407. I would like to be able to use something like the resource manager for a
  408. database since it does so many things well, but the resource mgr itself
  409. is out due to performance limitations on large files and the upper limit
  410. of 2727 resources/file.
  411.  
  412. I should start by asking if there is a way to augment or "fix" the
  413. resource mgr to get beyond these limitations?  Would multiple (ugh)
  414. resource files be a reasonable option?
  415.  
  416. In light of this, what database toolkits (source or binaries) are
  417. available to help support an application with 30-40 distinct object
  418. types, 10-20 fields per object type, several thousand object instances,
  419. and the need to look-up & return an object by type and serial number?
  420. Many objects reference or contain other objects.
  421.  
  422. We have ctree source and while it might do the job it is a generic
  423. toolkit. At this point in the project I would really like to plug in a
  424. library to get the needed functionality.  Also, as the resource mgr
  425. does, it would be preferable to run out of one logical file, but this
  426. isn't a hard and fast rule.
  427.  
  428. Finally, functionality is more important than price, i.e. we need to get
  429. the project completed...
  430.  
  431. Many thanks for any help anyone can offer,
  432.  
  433. Steve Leeke
  434.  
  435. --
  436. Steven D. Leeke, Center for Integrated Systems, Stanford University
  437.     {ucbvax,decvax}!decwrl!glacier!leeke, leeke@glacier.stanford.edu
  438.  
  439. "I suppose they don't use money in the 23rd century?"
  440.  
  441.  
  442. ------------------------------
  443.  
  444. From: fang@dukempd.UUCP (Fang Zhong)
  445. Subject: Postscript file convertion
  446. Date: 1 Jun 88 01:45:09 GMT
  447. Organization: Duke University Physics Dept.; Durham, N.C.
  448.  
  449.  
  450.         Is there an existing product that will convert a standard
  451. postscript file to a MacDraw readable file, or readable with any other
  452. draw programs. I have a graph in postscript format, I want to paste it
  453. into a MacWrite file. Can someone on the net point out to me the way to
  454. do this?
  455.         Thanks.
  456.  
  457.  
  458. ------------------------------
  459.  
  460. From: korfhage@CS.UCLA.EDU
  461. Subject: Comments wanted on Expressionist equation editor.
  462. Date: 31 May 88 22:52:27 GMT
  463. Organization: UCLA Computer Science Department
  464.  
  465.  
  466.    We are looking for a good equation editor. We have used MacEqn, and
  467. don't particularly like the user interface. I have the demo disk for
  468. MathType, and the one shortcoming is that is does not permit fonts
  469. larger than 24, even though we have such fonts. This can be a pretty
  470. severe shortcoming for making overhead slides, and expanding the
  471. equations in a drawing program is not the way to guarantee consistent
  472. sizing.
  473.    Expressionist was the third equation editor reviewed in the April
  474. MacWorld, and they mention that its large symbols don't look very good.
  475. Can anyone tell me, though, if it can make use of user-supplied large
  476. fonts? Has anyone out there tried to use it for overheads, and what were
  477. the results?
  478.  
  479.     Thanks.
  480.  
  481.    Willard Korfhage
  482.  
  483.    ARPA : korfhage@cs.ucla.edu
  484.    UUCP : {ucbvax,ihnp4,randvax,trwrb!trwspp,ism780}!ucla-cs!korfhage
  485.  
  486.  
  487. ------------------------------
  488.  
  489. From: korfhage@chiron.cs.ucla.edu (Willard Korfhage)
  490. Subject: Re: Comments wanted on Expressionist equation editor.
  491. Date: 31 May 88 23:26:09 GMT
  492. Organization: UCLA Computer Science Department
  493.  
  494. One other question that I forgot to ask about Expressionist was how many
  495. levels of superscript and subscript can it handle? MathType is limited
  496. to just two, but on rare occasion I need three.
  497.  
  498.   Thanks again.
  499.    Willard Korfhage
  500.  
  501.    ARPA : korfhage@cs.ucla.edu
  502.    UUCP : {ucbvax,ihnp4,randvax,trwrb!trwspp,ism780}!ucla-cs!korfhage
  503.  
  504.  
  505. ------------------------------
  506.  
  507. From: clayj@microsoft.UUCP (Clay Jackson)
  508. Subject: PCPC WSI
  509. Date: 31 May 88 21:43:23 GMT
  510. Organization: Microsoft, Inc., Redmond, Washington
  511.  
  512. Has anyone had any experiences (either good or bad) with PCPC's HD20WSI
  513. (it's an update board that will make an older HD20 into the equivalent
  514. of an HD20 SC).  I'm getting really tired of my old HD20, and would like
  515. to upgrade, if this is a reasonable path.
  516.  
  517. Thanks!
  518. --
  519. Clay Jackson
  520. {...microsoft!clayj}
  521.  
  522.  
  523. ------------------------------
  524.  
  525. From: chuq@plaid.Sun.COM (Chuq Von Rospach)
  526. Subject: FullWrite Pro bug.
  527. Date: 1 Jun 88 04:36:55 GMT
  528.  
  529. I found a really strange bug in FullWrite pro (this has been confirmed
  530. by Ashton-Tate, too, although they aren't quite sure what they're going
  531. to do about it...)
  532.  
  533. Take a Word 3.x document. Import it into FWP. Now, go into the
  534. find/change and try to search for '-'. It won't find any. FullWrite
  535. stores dashes internally as ascii AE. When it imports dashes from Word,
  536. however, it doesn't convert them over -- they remain ascii 2D. They both
  537. print the same and show the same on the screen, but they're separate
  538. characters.
  539.  
  540. The workaround is to select a Word-dash, copy it into the clipboard and
  541. then paste it into the find/change window. They don't seem to really
  542. know why the internal representation is different, or why it isn't
  543. converted.
  544.  
  545. Strange, but true.
  546.  
  547. So if you KNOW those dashes are in there, they are. It's just that a
  548. dash isn't a dash anymore. (and then there's optional hypens and
  549. en-dashes and em-dashes and.....)
  550.  
  551.  
  552. Chuq Von Rospach            chuq@sun.COM        Delphi: CHUQ
  553.  
  554.     Robert A. Heinlein: 1907-1988. He will never truly die as long as we
  555.                            read his words and speak his name. Rest in
  556. Peace.
  557.  
  558.  
  559. ------------------------------
  560.  
  561. From: jdm@ut-emx.UUCP (Jim Meiss)
  562. Subject: Re: The Overbar in the Symbol font
  563. Date: 28 May 88 03:06:03 GMT
  564. Organization: UTexas Computation Center, Austin, Texas
  565.  
  566. In my once favorite Mathematical word processing font, "Princeton" there
  567. were a number of zero width characters, overbars, dots and carots, so
  568. that you could make appropriate symbols. These work quite well, and even
  569. display properly on the Mac screen.
  570.  
  571. Unfortunately there is something strange about Princeton font: it can't
  572. be installed using the newer versions of the Font/DA mover. If you do
  573. install it, it sometimes causes crashes for example in Cricket Draw
  574. (even version 1.1). I never could figure out whats  strange obout this
  575. font....(It does have a FOND resouce, though all entries are zero...).
  576.  
  577.  
  578.                 Jim Meiss                
  579.                  jdm@emx.utexas.edu
  580.                 jdm%uta.MFENET@nmfecc.ARPA
  581.  
  582.  
  583. ------------------------------
  584.  
  585. From: drc@dbase.UUCP (Dennis Cohen)
  586. Subject: Re: FullWrite bizzarity explained (?)
  587. Date: 31 May 88 13:02:16 GMT
  588. Organization: Ashton Tate Development Center Glendale Cal.
  589.  
  590.  
  591. No need to worry about having "broken" anything.  The Thesaurus and
  592. Dictionary were licensed from and delivered by Microlytics.  They came
  593. with the bundle bit set.  This was not a problem before System 6.0,
  594. Finder 6.1 which did not become available until after FullWrite shipped;
  595. therefore, noone in the testing groups ever encountered the difficulty.
  596. Your solution of turning off the bundle bits is exactly the right
  597. solution (as I recommended in a previous posting).
  598. --
  599. Dennis Cohen
  600. Ashton-Tate Macintosh Division
  601. dBASE Mac Development Team
  602. --------------------------
  603. Disclaimer:  Any opinions expressed above are _mine_!
  604.  
  605.  
  606. ------------------------------
  607.  
  608. From: clive@drutx.ATT.COM (Clive Steward)
  609. Subject: FullWrite -- I'm sorry, but...
  610. Date: 1 Jun 88 00:23:02 GMT
  611. Organization: resident visitor
  612.  
  613. in spite of the religion being formed, I have to wonder on what bases
  614. such great enthusiasm is being grounded.  Though perhaps I haven't found
  615. features which answer some of the problems....would be open to
  616. suggestions.
  617.  
  618. And I will add up front, can really appreciate that the postit notes,
  619. change bars, etc., are overlay additions which any word processor would
  620. be the better for, especially for professional/group use.
  621.  
  622. My position:  I think FullWrite has a way to go before it challenges
  623. Word as  powerful balanced document tool.  And also that Word could be
  624. improved to match ease of use, mostly through some easy visual
  625. controls/indicators  added to work with its rich style abilities.  (e.g.
  626. Consider a little stack  of style layers, showing/selecting styles on
  627. mousing).
  628.  
  629. Now to the experience.
  630.  
  631. To begin, my model of working with Word has been:  quickly write some
  632. text. Then hit it with styles and the index/contents tools to produce a
  633. very finished looking product almost immediately.  Pictures and
  634. multi-column/sidebars take  a bit of fussing with display page.
  635.  
  636. I couldn't seem to find anything like this power in FullWrite.  All in
  637. all, it feels rather like MacWrite -- you know, rulers everywhere,
  638. because it's the  only way to get what you'd like.
  639.  
  640. In fairness, the sum experience was this weekend, trying to move a
  641. medium size (50 page) document from Word 3.  The translator worked
  642. somewhat; at least all  my text and pictures came through.  However,
  643. much formatting, including  headings, was lost.  It did tell me so.
  644.  
  645. Then came the fun.  Yes, it's slow, and yes, it takes more than half of
  646. a 2.5 meg Mac Plus; however also no crashes, no problems with
  647. Multifinder.
  648.  
  649. The real problem seems to be the limitations built into a rather fixed
  650. document model.
  651.  
  652. The style model especially seems to be missing essential design and user
  653. freedom features.  It may possibly be seen as an improvement, to set
  654. base  styles for (only) the text classes the FullWrite programmer
  655. thought important. But why then are substyles singly inherited from
  656. these, and themselves not  able to have anything like the same degrees
  657. of freedom?  Some key points  missing:
  658.  
  659.     1)  You can't set the inter-paragraph spacing, except at the
  660.     top level, where it is for the entire document.
  661.  
  662.     Thus where I have inclusions of program code, for instance, each CR
  663.     separated line will have lots of space, or I will have to multispace
  664.     between each paragraph through the entire document, as in using a
  665.     typewriter.
  666.  
  667.     2)  Substyles don't allow setting first line in/outdents separately
  668.     from the global style.
  669.  
  670.     Thus I can't have a style for bullet items, etc..  Back to ruler
  671.     pairs for _each_ list and the return to normal text style
  672. afterwards.
  673.  
  674.     3)  Though sidebars seem to be the intended answer for unusual
  675. things,
  676.     they don't fill in here (included listings, etc.) at all.  And see
  677. below.
  678.  
  679. Other things noticed:
  680.  
  681.     1) The outliner requires selecting the entire document first, to
  682.     generate an outline.  I couldn't even seem find a way to do this,
  683.     across chapter boundaries.  And don't find the outliner interface
  684.     nearly as easy or failsafe (scrambled text for me often) as Word's.
  685.  
  686.     2)  Working with graphics seemed unduly difficult;  also the
  687.     drawing tools, including interface to Bezier curves, seem very
  688.     awkward.  I agree that they could be well left out; would
  689.     rather use SuperPaint, especially as it's upgrade promises.
  690.  
  691.     3)  Sizing anything (especially graphics) included in sidebars
  692. appears
  693.     to be a royal pain -- resize each of (possibly several -- why are
  694. there
  695.     several) involved layers first, etc..
  696.  
  697.     And some, like the drawing 'canvas', seem to require sizing by
  698. numbers,
  699.     not point and drag to fit!
  700.  
  701.     4)  Things (notably backspacing over text) seem to slow down in
  702. sidebars,
  703.     thus making them still less desirable as a substitute for a
  704. generalized
  705.     style capability.
  706.  
  707. It's interesting also that the first thing people seem to ask for is to
  708. turn off the WYSIWYG.  I agree, though that slowdown is minimal, really.
  709.   Obviously some (!) work was put into making screen update rapid; it
  710. shows.
  711.  
  712. And clearly a lot of work went into FullWrite itself, with good
  713. intentions.
  714.  
  715. What I really don't understand is the 'bash Microsoft' tone in the
  716. recent articles, unless it's smarting about the bug-infested first Word
  717. 3.00 release.
  718.  
  719. If you really needed such a tool, weren't you glad it was there?  I have
  720. been.  Think few of us are really in a position to cast such stones.
  721.  
  722. And just because a company's getting big, or has to do with IBM (now, I
  723. might have to think about that one), doesn't automatically bring evil.
  724. It's still individuals -- aren't we who write programs always -- who put
  725. the sweat into making these things.
  726.  
  727. I think that the competition will bring us better versions of both
  728. products, and possibly growth towards (RTF?) generalized interchange
  729. formats.  Clearly, presenting an easy interface to document quality
  730. formatted text is a complicated problem.
  731.  
  732. Can we see the progress as fun?
  733.  
  734.  
  735. Clive Steward (not my best literary effort..., but it's pseudo-Monday)
  736.  
  737.  
  738. ------------------------------
  739.  
  740. From: jcbeatty@watcgl.waterloo.edu (John C. Beatty)
  741. Subject: A Multiuser Helix II Problem
  742. Date: 27 May 88 14:00:41 GMT
  743. Organization: U of Waterloo, Ontario
  744.  
  745. I am running what Odesta tells me is the current version of MultiUser
  746. Helix (version r40a).  I have not been successful running it under
  747. MultiFinder, and would like to hear from people who either have or have
  748. not been successful doing so.
  749.  
  750. All three of Double Helix II, the MultiUser host, and the Network Node
  751. appear to have the same problem: they "exit unexpectedly" when I switch
  752. back from another application - for example, Macwrite or Word3.01.  The
  753. Network node is least reliable; it consistently fails the first time I
  754. switch back.
  755.  
  756. I have experienced this difficulty from a stock Mac Plus, a Mac Plus
  757. upgraded with a Radius accelerator, and on a Mac II.  With respect to
  758. the Mac II, the failure occurs when the Mac is booted from an
  759. unretouched system tools distribution disk (release 5 system software),
  760. running a fresh version of the Network Node.  My host machine is an SE
  761. running system 6.0 and finder 4.2, and equiped with a 2mb Levco
  762. accelerator.
  763.  
  764. I have discussed this problem several times, over perhaps a four month
  765. period, with various people at Odesta.  They invariably claim to have
  766. been told that the Network node works under Multifinder, and that the
  767. host software does not.  However, I have yet to talk to anyone who has
  768. themselves run the Network Node on a MacII.  They periodically promise
  769. to investigate and get back to me - I have yet to hear from anyone.
  770. They generally suggest increasing the size of the memory partition; this
  771. does not help.
  772.  
  773. At this point I am unsure whether I have a problem, or whether Odesta
  774. has a problem.  Knowing whether other people have experienced the same
  775. difficulty will tell me where to look.
  776.  
  777. Thanks for your help.
  778.  
  779. jcbeatty@waterloo.edu
  780.  
  781.  
  782. ------------------------------
  783.  
  784. From: chuq@plaid.Sun.COM (Chuq Von Rospach)
  785. Subject: Re: FullWrite -- I'm sorry, but...
  786. Date: 1 Jun 88 18:00:41 GMT
  787. Organization: Fictional Reality
  788.  
  789. >My position:  I think FullWrite has a way to go before it challenges Word as
  790. >powerful balanced document tool.
  791.  
  792. I would say it this way. FullWrite has a way to go before it becomes
  793. what  it's potential shows that it should be.
  794.  
  795. I feel that it already matches Word in power and beats it in ease of use
  796. and flexibility. There are certainly some areas where it is weaker, but
  797. there are some areas where it is much stronger, too. So all of this is
  798. on balance. If the areas where it is weaker (some formatting issues and
  799. styles) are critical for you, it might not be a good time to switch
  800. over.
  801.  
  802. >And also that Word could be improved
  803. >to match ease of use, mostly through some easy visual controls/indicators
  804. >added to work with its rich style abilities.
  805.  
  806. Microsoft hasn't shown any great track record on "improving" their user
  807. interface in my mind. Word 3.x always felt to me like a PC program with
  808. a veneer on it, rather than a Macintosh program. I could get it to do
  809. what I wanted it to do, but I always felt like it was fighting back. I
  810. don't have that feeling with FWP.
  811.  
  812. >To begin, my model of working with Word has been:  quickly write some text.
  813. >Then hit it with styles and the index/contents tools to produce a very finished
  814. >looking product almost immediately.  Pictures and multi-column/sidebars take
  815. >a bit of fussing with display page.
  816.  
  817. My model is very similar, as a matter of fact. What's important, though,
  818. is that you stop trying to do things the way Word does them. The writing
  819. paradigms are very different, and until you stop trying to make
  820. FullWrite act like Word and start doing things the way FWP was designed
  821. to do them, you're going to be very frustrated.
  822.  
  823. Think how frustrated you'd be if you were trying to go the other way,
  824. and  kept trying to bring up sidebars in Word to store stuff in. It
  825. isn't fair to put down one program because it isn't like another
  826. program. That's MUCH different than putting a program down because it
  827. can't do something.
  828.  
  829. >I couldn't seem to find anything like this power in FullWrite.
  830.  
  831. It's there. Once you start working with FullWrite, you'll find it.
  832.  
  833. >it feels rather like MacWrite -- you know, rulers everywhere, because it's the
  834. >only way to get what you'd like.
  835.  
  836. Not at all true. I use rulers more in FWP than I did in Word, but only
  837. because you can't (yet) put rulers in your styles. Word has just as many
  838. rulers, it's just that the display mechanisms are different (and, of
  839. course, you can turn them off in both).
  840.  
  841. Assuming rulers are turned on in both, what Word does is show the
  842. current ruler in the ruler bar at the top of the window. What FWP does
  843. is show the rulers, in context, with the text. I find the latter much
  844. nicer to use, since I can SEE where the ruler definitions change. With
  845. Word, that can be a pain.
  846.  
  847. >In fairness, the sum experience was this weekend, trying to move a medium size
  848. >(50 page) document from Word 3.  The translator worked somewhat; at least all
  849. >my text and pictures came through.  However, much formatting, including
  850. >headings, was lost.  It did tell me so.
  851.  
  852. I've been using it three-and-a-half weeks. A weekend with a program of
  853. this complexity is nothing, frankly. It took me about two weeks to
  854. really start getting any kind of feel for it at all, and I'm just
  855. starting to be what I would consider proficient, having now slogged
  856. about 60K worth of stuff through it.
  857.  
  858. How long did it take you to learn Word to the point where you could beat
  859. it into submission? It took me longer than it's taken with FullWrite.
  860.  
  861. >The style model especially seems to be missing essential design and user
  862. >freedom features.
  863.  
  864. The style model is weaker than Word. Ashton-Tate on CompuServe has
  865. acknowledged this, and has said (without going into details) that it'll
  866. be significantly enhanced in the next release due this fall. I would
  867. expect that the new release will allow styles to have most of the
  868. functionality of Word styles, including paragraph spacing and rulers.
  869. There may also be something like a "Based on" style.
  870.  
  871. >    1) The outliner requires selecting the entire document first, to
  872. >    generate an outline.  I couldn't even seem find a way to do this,
  873. >    across chapter boundaries.
  874.  
  875. Chapters are completely separate entities, and (basically) nothing
  876. crosses the boundaries. This may or may get relaxed later, it's a fairly
  877. basic part of the design of the program. What WILL happen is that the
  878. next release will be smaller, faster and make better use of chapters so
  879. that chapters can be larger, reducing the need to arbitrarily split text
  880. up for memory management.
  881.  
  882. >    2)  Working with graphics seemed unduly difficult;  also the
  883. >    drawing tools, including interface to Bezier curves, seem very
  884. >    awkward.  I agree that they could be well left out; would
  885. >    rather use SuperPaint, especially as it's upgrade promises.
  886.  
  887. I haven't used FWP enough to comment, but I will point out that Word 4.0
  888. will ship with SuperPaint, the current version, not the upcoming
  889. SuperPaint II. So if you want the added features of SP II, you still
  890. have to go and buy it... I'm ALSO looking forward to SP II since it will
  891. do auto-tracing of bitmaps, which I can then shift over to Freehand to
  892. manipulate. (at least until Freehand comes out with an auto-tracing
  893. mode).
  894.  
  895. >If you really needed such a tool, weren't you glad it was there?  I have
  896. >been.  Think few of us are really in a position to cast such stones.
  897.  
  898. I was very glad I had word 3.0. I would have died limited to MacWrite or
  899. WriteNow. But it always felt to me like it was hoarding it's power -- it
  900. would always make me fight to get what I wanted out of it. FullWrite
  901. doesn't do that to me. I also have problems with Microsoft as a
  902. corporation -- the hassles getting information, the inability of them to
  903. let me know of new versions (yes, they DID ship out 3.01 free, bless
  904. them. But did they bother to send you a message when they released 3.02?
  905. Or Excel 1.06? Or did you find out from a friend, and then wait four or
  906. five weeks for the upgrade to show?). I'm getting much better vibes from
  907. Ashton-Tate on support and futures for the product -- and they aren't
  908. afraid to admit to bugs in public (I'm keeping an eye on the A-T Forum
  909. on CompuServe. There's a very refreshing openness and a high level of
  910. expertise on that board, things I always felt were missing from
  911. Microsoft's on-line groups up there -- where the common answer seemed to
  912. be either silence or "Call our support number")
  913.  
  914. This doesn't make Word a worse Word Processor. But FWP is the first one
  915. I've seen that has the power to take Word on in its own territory. And
  916. FWP is the first WP that really has been designed to be a Macintosh word
  917. processor. And it shows -- it is, for all it's power and complexity,
  918. simple and intuitive.
  919.  
  920. >And just because a company's getting big, or has to do with IBM (now, I
  921. >might have to think about that one), doesn't automatically bring evil.
  922.  
  923. No, by a long shot. Ashton-Tate ain't small. But I have talked to dozens
  924. of people who have had to order upgrades (that they found out about on
  925. Bulletin boards) for bug fixes in Microsoft products. And had the
  926. request get lost, sometimes two or three times. When Excel is crashing
  927. every few minutes on your Mac II, and it takes you twelve weeks to get
  928. the fixed version of the program because Microsoft lost the request
  929. twice and then spent three weeks shipping it to you, it doesn't engender
  930. a lot of corporate loyalty. And I know enough people who have been in
  931. this position that I don't believe it to be a rare fluke. It happens a
  932. lot.
  933.  
  934. I used to work with a lot of Microsoft products. Microsoft File, which
  935. hasn't been updated since 1984 (it'll get a facelife this year, but I
  936. wonder why they bother). Word 1.05, later Word 3.0, later 3.01. A
  937. love/hate relationship. Excel 1.04 (now 1.06, but I haven't asked for
  938. it).
  939.  
  940. The only one I have left is Excel (actually, I have Word on my disk,
  941. primarily because my editor requires my articles to be shipped in Word
  942. format -- so I write in Fullwrite, export in Macwrite, and import into
  943. word before mailing it off. Other than that...). And my guess is that
  944. Full Impact may well do for Excel what FullWrite seems to be doing for
  945. Word -- giving people a choice (for the record, I really like Excel, and
  946. have no intention of switching over.)
  947.  
  948.  
  949. Chuq Von Rospach            chuq@sun.COM        Delphi: CHUQ
  950.  
  951.     Robert A. Heinlein: 1907-1988. He will never truly die as long as we
  952.                            read his words and speak his name. Rest in
  953. Peace.
  954.  
  955.  
  956. ------------------------------
  957.  
  958. From: lsr@Apple.COM (Larry Rosenstein)
  959. Subject: Reducing disk swaps on 2 floppy Macs
  960. Date: 1 Jun 88 17:23:58 GMT
  961. Organization: Advanced Technology Group, Apple Computer
  962.  
  963.  
  964. I remembered this discussion from a few weeks ago, and for fun looked
  965. into what was going on.  (Synopsis: people were wondering about using an
  966. LRU algorithm for ejecting disks in the disk switch dialog.  Sometimes
  967. you have 2 floppy drives but the system only uses one of them.)
  968.  
  969. It turns out that the code to allow Command-Shift-0/1/2 during a disk
  970. switch was added to the Mac Plus ROM at the same time that Command-. was
  971. added to abort the disk switch.  (You did know that Command-. will abort
  972. the disk switch and return a "volume not available" error, right?)
  973.  
  974. It turns out, that the code has a bug.  Instead of checking for ASCII
  975. characters $30-$32, it checks for $00-$02.  (Note that Mac SE & Mac II
  976. users can use Command-Shift-Control-@/A/B to generate these characters
  977. and actually eject the diskettes during a disk switch!  I don't have a
  978. machine to try this one, but it should work.)
  979.  
  980. I was able to write a small INIT file that watches for
  981. Command-Shift-0/1/2 during a disk switch and posts a keystroke that the
  982. ROM will recognize.  I have tried this on a Mac Plus and it seems to
  983. work.  I don't have a Mac SE or Mac II with 2 floppy drives to try it
  984. out on those machines. (I also don't know if it will work on 64K ROM
  985. machines.)
  986.  
  987. Before posting this in general, I would like to have a couple of people
  988. try it out a bit more.  So if you have a Mac SE or Mac II with 2 (or 3)
  989. floppy drives, and are willing to be a guinea pig for this, send me
  990. mail.
  991.  
  992. --
  993.          Larry Rosenstein,  Object Specialist
  994.  Apple Computer, Inc.  20525 Mariani Ave, MS 27-AJ  Cupertino, CA 95014
  995.         AppleLink:Rosenstein1    domain:lsr@Apple.COM
  996.         UUCP:{sun,voder,nsc,decwrl}!apple!lsr
  997.  
  998. ------------------------------
  999.  
  1000. End of Usenet Mac Digest
  1001. ************************
  1002.  
  1003. >>Download of 1000 lines: Complete.
  1004.  
  1005. ACTION>